home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Meeting Pearls 1
/
Meeting Pearls Vol 1 (1994).iso
/
installed_progs
/
gfx
/
lise2.1
/
lise
/
src
/
str
/
line.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1993-03-31
|
333 b
|
22 lines
/* read line from console */
#include <stdio.h>
main(argc,argv)
int argc;
char *argv[];
{
char c,s[256];
int i,n,m;
FILE *fp;
if(argc!=1) { /* print help message */
printf("line\nreturns a line from console input\n");
printf("\n(C) Rainer Kowallik\n");
exit(0);
}
scanf("%s",s);
printf("%s\n",s);
}